home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / SearchDialog.js < prev    next >
Encoding:
JavaScript  |  2005-07-20  |  24.7 KB  |  803 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  * ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Mozilla Communicator client code, released
  16.  * March 31, 1998.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Netscape Communications Corporation.
  20.  * Portions created by the Initial Developer are Copyright (C) 1998-1999
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *   Hσkan Waara <hwaara@chello.se>
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  28.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. var rdfDatasourcePrefix = "@mozilla.org/rdf/datasource;1?name=";
  41. var rdfServiceContractID    = "@mozilla.org/rdf/rdf-service;1";
  42. var searchSessionContractID = "@mozilla.org/messenger/searchSession;1";
  43. var folderDSContractID      = rdfDatasourcePrefix + "mailnewsfolders";
  44. var gSearchView;
  45. var gSearchSession;
  46. var gCurrentFolder;
  47.  
  48. var nsIMsgFolder = Components.interfaces.nsIMsgFolder;
  49. var nsIMsgWindow = Components.interfaces.nsIMsgWindow;
  50. var nsIMsgRDFDataSource = Components.interfaces.nsIMsgRDFDataSource;
  51. var nsMsgSearchScope = Components.interfaces.nsMsgSearchScope;
  52.  
  53. var gFolderDatasource;
  54. var gFolderPicker;
  55. var gStatusBar = null;
  56. var gStatusFeedback = new nsMsgStatusFeedback();
  57. var gTimelineEnabled = false;
  58. var gMessengerBundle = null;
  59. var RDF;
  60. var gSearchBundle;
  61. var gNextMessageViewIndexAfterDelete = -2;
  62.  
  63. // Datasource search listener -- made global as it has to be registered
  64. // and unregistered in different functions.
  65. var gDataSourceSearchListener;
  66. var gViewSearchListener;
  67.  
  68. var gSearchStopButton;
  69. var gMailSession;
  70.  
  71. var MSG_FOLDER_FLAG_VIRTUAL = 0x0020;
  72.  
  73. // Controller object for search results thread pane
  74. var nsSearchResultsController =
  75. {
  76.     supportsCommand: function(command)
  77.     {
  78.         switch(command) {
  79.         case "cmd_delete":
  80.         case "cmd_shiftDelete":
  81.         case "button_delete":
  82.         case "cmd_open":
  83.         case "file_message_button":
  84.         case "goto_folder_button":
  85.         case "saveas_vf_button":
  86.             return true;
  87.         default:
  88.             return false;
  89.         }
  90.     },
  91.  
  92.     // this controller only handles commands
  93.     // that rely on items being selected in
  94.     // the search results pane.
  95.     isCommandEnabled: function(command)
  96.     {
  97.         var enabled = true;
  98.         
  99.         switch (command) { 
  100.           case "goto_folder_button":
  101.             if (GetNumSelectedMessages() != 1)
  102.               enabled = false;
  103.             break;
  104.           case "cmd_delete":
  105.           case "cmd_shiftDelete":
  106.           case "button_delete":
  107.             // this assumes that advanced searches don't cross accounts
  108.             if (GetNumSelectedMessages() <= 0 || isNewsURI(gSearchView.getURIForViewIndex(0)))
  109.               enabled = false;
  110.             break;
  111.           case "saveas_vf_button":
  112.               // need someway to see if there are any search criteria...
  113.               return true;
  114.           default:
  115.             if (GetNumSelectedMessages() <= 0)
  116.               enabled = false;
  117.             break;
  118.         }
  119.  
  120.         return enabled;
  121.     },
  122.  
  123.     doCommand: function(command)
  124.     {
  125.         switch(command) {
  126.         case "cmd_open":
  127.             MsgOpenSelectedMessages();
  128.             return true;
  129.  
  130.         case "cmd_delete":
  131.         case "button_delete":
  132.             MsgDeleteSelectedMessages(nsMsgViewCommandType.deleteMsg);
  133.             return true;
  134.         case "cmd_shiftDelete":
  135.             MsgDeleteSelectedMessages(nsMsgViewCommandType.deleteNoTrash);
  136.             return true;
  137.  
  138.         case "goto_folder_button":
  139.             GoToFolder();
  140.             return true;
  141.  
  142.         case "saveas_vf_button":
  143.             saveAsVirtualFolder();
  144.             return true;
  145.         default:
  146.             return false;
  147.         }
  148.  
  149.     },
  150.  
  151.     onEvent: function(event)
  152.     {
  153.     }
  154. }
  155.  
  156. function UpdateMailSearch(caller)
  157. {
  158.   //dump("XXX update mail-search " + caller + "\n");
  159.   document.commandDispatcher.updateCommands('mail-search');
  160. }
  161.  
  162. function SetAdvancedSearchStatusText(aNumHits)
  163. {
  164.   var statusMsg;
  165.   // if there are no hits, it means no matches were found in the search.
  166.   if (aNumHits == 0)
  167.     statusMsg = gSearchBundle.getString("searchFailureMessage");
  168.   else 
  169.   {
  170.     if (aNumHits == 1) 
  171.       statusMsg = gSearchBundle.getString("searchSuccessMessage");
  172.     else
  173.       statusMsg = gSearchBundle.getFormattedString("searchSuccessMessages", [aNumHits]);
  174.   }
  175.  
  176.   gStatusFeedback.showStatusString(statusMsg);
  177. }
  178.  
  179. // nsIMsgSearchNotify object
  180. var gSearchNotificationListener =
  181. {
  182.     onSearchHit: function(header, folder)
  183.     {
  184.         // XXX TODO
  185.         // update status text?
  186.     },
  187.  
  188.     onSearchDone: function(status)
  189.     {
  190.         gSearchStopButton.setAttribute("label", gSearchBundle.getString("labelForSearchButton"));
  191.         gSearchStopButton.setAttribute("accesskey", gSearchBundle.getString("accesskeyForSearchButton"));
  192.         gStatusFeedback._stopMeteors();
  193.         SetAdvancedSearchStatusText(gSearchView.QueryInterface(Components.interfaces.nsITreeView).rowCount);
  194.     },
  195.  
  196.     onNewSearch: function()
  197.     {
  198.       gSearchStopButton.setAttribute("label", gSearchBundle.getString("labelForStopButton"));
  199.       gSearchStopButton.setAttribute("accesskey", gSearchBundle.getString("accesskeyForStopButton"));
  200.       UpdateMailSearch("new-search");    
  201.       gStatusFeedback._startMeteors();
  202.       gStatusFeedback.showStatusString(gSearchBundle.getString("searchingMessage"));
  203.     }
  204. }
  205.  
  206. // the folderListener object
  207. var gFolderListener = {
  208.     OnItemAdded: function(parentItem, item) {},
  209.  
  210.     OnItemRemoved: function(parentItem, item){},
  211.  
  212.     OnItemPropertyChanged: function(item, property, oldValue, newValue) {},
  213.  
  214.     OnItemIntPropertyChanged: function(item, property, oldValue, newValue) {},
  215.  
  216.     OnItemBoolPropertyChanged: function(item, property, oldValue, newValue) {},
  217.  
  218.     OnItemUnicharPropertyChanged: function(item, property, oldValue, newValue){},
  219.     OnItemPropertyFlagChanged: function(item, property, oldFlag, newFlag) {},
  220.  
  221.     OnItemEvent: function(folder, event) {
  222.         var eventType = event.toString();
  223.         
  224.         if (eventType == "DeleteOrMoveMsgCompleted") {
  225.             HandleDeleteOrMoveMessageCompleted(folder);
  226.         }     
  227.         else if (eventType == "DeleteOrMoveMsgFailed") {
  228.             HandleDeleteOrMoveMessageFailed(folder);
  229.         }
  230.     }
  231. }
  232.  
  233. function HideSearchColumn(id)
  234. {
  235.   var col = document.getElementById(id);
  236.   if (col) {
  237.     col.setAttribute("hidden","true");
  238.     col.setAttribute("ignoreincolumnpicker","true");
  239.   }
  240. }
  241.  
  242. function ShowSearchColumn(id)
  243. {
  244.   var col = document.getElementById(id);
  245.   if (col) {
  246.     col.removeAttribute("hidden");
  247.     col.removeAttribute("ignoreincolumnpicker");
  248.   }
  249. }
  250.  
  251. function searchOnLoad()
  252. {
  253.   initializeSearchWidgets();
  254.   initializeSearchWindowWidgets();
  255.   CreateMessenger();
  256.  
  257.   gSearchBundle = document.getElementById("bundle_search");
  258.   gSearchStopButton.setAttribute("label", gSearchBundle.getString("labelForSearchButton"));
  259.   gSearchStopButton.setAttribute("accesskey", gSearchBundle.getString("accesskeyForSearchButton"));
  260.   gMessengerBundle = document.getElementById("bundle_messenger");
  261.   setupDatasource();
  262.   setupSearchListener();
  263.  
  264.   if (window.arguments && window.arguments[0])
  265.       selectFolder(window.arguments[0].folder);
  266.  
  267.   onMore(null);
  268.   UpdateMailSearch("onload");
  269.   
  270.   // hide and remove these columns from the column picker.  you can't thread search results
  271.   HideSearchColumn("threadCol"); // since you can't thread search results
  272.   HideSearchColumn("totalCol"); // since you can't thread search results
  273.   HideSearchColumn("unreadCol"); // since you can't thread search results
  274.   HideSearchColumn("unreadButtonColHeader");
  275.   HideSearchColumn("statusCol");
  276.   HideSearchColumn("flaggedCol");
  277.   HideSearchColumn("idCol");
  278.   HideSearchColumn("junkStatusCol");
  279.   HideSearchColumn("accountCol");
  280.   
  281.   // we want to show the location column for search
  282.   ShowSearchColumn("locationCol");
  283. }
  284.  
  285. function searchOnUnload()
  286. {
  287.     // unregister listeners
  288.     gSearchSession.unregisterListener(gViewSearchListener);
  289.     gSearchSession.unregisterListener(gSearchNotificationListener);
  290.  
  291.     gMailSession.RemoveFolderListener(gFolderListener);
  292.     
  293.     if (gSearchView) {
  294.     gSearchView.close();
  295.     gSearchView = null;
  296.     }
  297.  
  298.     // release this early because msgWindow holds a weak reference
  299.     msgWindow.rootDocShell = null;
  300. }
  301.  
  302. function initializeSearchWindowWidgets()
  303. {
  304.     gFolderPicker = document.getElementById("searchableFolders");
  305.     gSearchStopButton = document.getElementById("search-button");
  306.     gStatusBar = document.getElementById('statusbar-icon');
  307.  
  308.     msgWindow = Components.classes[msgWindowContractID].createInstance(nsIMsgWindow);
  309.     msgWindow.statusFeedback = gStatusFeedback;
  310.     msgWindow.SetDOMWindow(window);
  311.  
  312.     // functionality to enable/disable buttons using nsSearchResultsController
  313.     // depending of whether items are selected in the search results thread pane.
  314.     top.controllers.insertControllerAt(0, nsSearchResultsController);
  315. }
  316.  
  317.  
  318. function onSearchStop() {
  319.     gSearchSession.interruptSearch();
  320. }
  321.  
  322. function onResetSearch(event) {
  323.     onReset(event);
  324.     
  325.     var tree = GetThreadTree();
  326.     tree.treeBoxObject.view = null;
  327.     gStatusFeedback.showStatusString("");
  328. }
  329.  
  330. function selectFolder(folder) 
  331. {
  332.     var folderURI;
  333.  
  334.     // if we can't search messages on this folder, just select the first one
  335.     if (!folder || !folder.server.canSearchMessages || (folder.flags & MSG_FOLDER_FLAG_VIRTUAL)) {
  336.         // find first item in our folder picker menu list
  337.         folderURI = gFolderPicker.firstChild.tree.builderView.getResourceAtIndex(0).Value;
  338.     } else {
  339.         folderURI = folder.URI;
  340.     }
  341.     updateSearchFolderPicker(folderURI);
  342. }
  343.  
  344. function updateSearchFolderPicker(folderURI) 
  345.     SetFolderPicker(folderURI, gFolderPicker.id);
  346.  
  347.     // use the URI to get the real folder
  348.     gCurrentFolder =
  349.         RDF.GetResource(folderURI).QueryInterface(nsIMsgFolder);
  350.  
  351.     var searchLocalSystem = document.getElementById("checkSearchLocalSystem");
  352.     if (searchLocalSystem)
  353.         searchLocalSystem.disabled = gCurrentFolder.server.searchScope == nsMsgSearchScope.offlineMail;
  354.     setSearchScope(GetScopeForFolder(gCurrentFolder));
  355. }
  356.  
  357. function updateSearchLocalSystem()
  358. {
  359.   setSearchScope(GetScopeForFolder(gCurrentFolder));
  360. }
  361.  
  362. function UpdateAfterCustomHeaderChange()
  363. {
  364.   updateSearchAttributes();
  365. }
  366.  
  367. function onChooseFolder(event) {
  368.     var folderURI = event.id;
  369.     if (folderURI) {
  370.         updateSearchFolderPicker(folderURI);
  371.     }
  372. }
  373.  
  374. function onEnterInSearchTerm()
  375. {
  376.   // on enter
  377.   // if not searching, start the search
  378.   // if searching, stop and then start again
  379.   if (gSearchStopButton.getAttribute("label") == gSearchBundle.getString("labelForSearchButton")) { 
  380.      onSearch(); 
  381.   }
  382.   else {
  383.      onSearchStop();
  384.      onSearch();
  385.   }
  386. }
  387.  
  388. function onSearch()
  389. {
  390.     // set the view.  do this on every search, to
  391.     // allow the tree to reset itself
  392.     var treeView = gSearchView.QueryInterface(Components.interfaces.nsITreeView);
  393.     if (treeView)
  394.     {
  395.       var tree = GetThreadTree();
  396.       tree.treeBoxObject.view = treeView;
  397.     }
  398.  
  399.     gSearchSession.clearScopes();
  400.     // tell the search session what the new scope is
  401.     if (!gCurrentFolder.isServer && !gCurrentFolder.noSelect)
  402.         gSearchSession.addScopeTerm(GetScopeForFolder(gCurrentFolder),
  403.                                     gCurrentFolder);
  404.  
  405.     var searchSubfolders = document.getElementById("checkSearchSubFolders").checked;
  406.     if (gCurrentFolder && (searchSubfolders || gCurrentFolder.isServer || gCurrentFolder.noSelect))
  407.     {
  408.         AddSubFolders(gCurrentFolder);
  409.     }
  410.     // reflect the search widgets back into the search session
  411.     saveSearchTerms(gSearchSession.searchTerms, gSearchSession);
  412.  
  413.     try
  414.     {
  415.       gSearchSession.search(msgWindow);
  416.     }
  417.     catch(ex)
  418.     {
  419.        dump("Search Exception\n");
  420.     }
  421.     // refresh the tree after the search starts, because initiating the
  422.     // search will cause the datasource to clear itself
  423. }
  424.  
  425. function AddSubFolders(folder) {
  426.   if (folder.hasSubFolders)
  427.   {
  428.     var subFolderEnumerator = folder.GetSubFolders();
  429.     var done = false;
  430.     while (!done)
  431.     {
  432.       var next = subFolderEnumerator.currentItem();
  433.       if (next)
  434.       {
  435.         var nextFolder = next.QueryInterface(Components.interfaces.nsIMsgFolder);
  436.         if (nextFolder && ! (nextFolder.flags & MSG_FOLDER_FLAG_VIRTUAL))
  437.         {
  438.           if (!nextFolder.noSelect)
  439.             gSearchSession.addScopeTerm(GetScopeForFolder(nextFolder), nextFolder);
  440.           AddSubFolders(nextFolder);
  441.         }
  442.       }
  443.       try
  444.       {
  445.         subFolderEnumerator.next();
  446.        }
  447.        catch (ex)
  448.        {
  449.           done = true;
  450.        }
  451.     }
  452.   }
  453. }
  454.  
  455. function AddSubFoldersToURI(folder) 
  456. {
  457.   var returnString = "";
  458.   if (folder.hasSubFolders)
  459.   {
  460.     var subFolderEnumerator = folder.GetSubFolders();
  461.     var done = false;
  462.     while (!done)
  463.     {
  464.       var next = subFolderEnumerator.currentItem();
  465.       if (next)
  466.       {
  467.         var nextFolder = next.QueryInterface(Components.interfaces.nsIMsgFolder);
  468.         if (nextFolder && ! (nextFolder.flags & MSG_FOLDER_FLAG_VIRTUAL))
  469.         {
  470.           if (!nextFolder.noSelect && !nextFolder.isServer)
  471.           {
  472.             if (returnString.length > 0)
  473.               returnString += '|';
  474.             returnString += nextFolder.URI;
  475.           }
  476.           var subFoldersString = AddSubFoldersToURI(nextFolder);
  477.           if (subFoldersString.length > 0)
  478.           {
  479.             if (returnString.length > 0)
  480.               returnString += '|';
  481.             returnString += subFoldersString;
  482.           }
  483.  
  484.         }
  485.       }
  486.       try
  487.       {
  488.         subFolderEnumerator.next();
  489.        }
  490.        catch (ex)
  491.        {
  492.           done = true;
  493.        }
  494.     }
  495.   }
  496.   return returnString;
  497. }
  498.  
  499.  
  500. function GetScopeForFolder(folder) 
  501. {
  502.   var searchLocalSystem = document.getElementById("checkSearchLocalSystem");
  503.   return searchLocalSystem && searchLocalSystem.checked ? nsMsgSearchScope.offlineMail : folder.server.searchScope;
  504. }
  505.  
  506. var nsMsgViewSortType = Components.interfaces.nsMsgViewSortType;
  507. var nsMsgViewSortOrder = Components.interfaces.nsMsgViewSortOrder;
  508. var nsMsgViewFlagsType = Components.interfaces.nsMsgViewFlagsType;
  509. var nsMsgViewCommandType = Components.interfaces.nsMsgViewCommandType;
  510.  
  511. function goUpdateSearchItems(commandset)
  512. {
  513.   for (var i = 0; i < commandset.childNodes.length; i++)
  514.   {
  515.     var commandID = commandset.childNodes[i].getAttribute("id");
  516.     if (commandID)
  517.     {
  518.       goUpdateCommand(commandID);
  519.     }
  520.   }
  521. }
  522.  
  523. function nsMsgSearchCommandUpdater()
  524. {}
  525.  
  526. nsMsgSearchCommandUpdater.prototype =
  527. {
  528.   updateCommandStatus : function()
  529.   {
  530.     // the back end is smart and is only telling us to update command status
  531.     // when the # of items in the selection has actually changed.
  532.     document.commandDispatcher.updateCommands('mail-search');
  533.   },
  534.   displayMessageChanged : function(aFolder, aSubject, aKeywords)
  535.   {
  536.   },
  537.  
  538.   updateNextMessageAfterDelete : function()
  539.   {
  540.     SetNextMessageAfterDelete();
  541.   },
  542.  
  543.   QueryInterface : function(iid)
  544.   {
  545.     if (iid.equals(Components.interfaces.nsIMsgDBViewCommandUpdater) ||
  546.         iid.equals(Components.interfaces.nsISupports))
  547.       return this;
  548.  
  549.     throw Components.results.NS_NOINTERFACE;
  550.   }
  551. }
  552.  
  553. function setupDatasource() {
  554.  
  555.     RDF = Components.classes[rdfServiceContractID].getService(Components.interfaces.nsIRDFService);
  556.     gSearchView = Components.classes["@mozilla.org/messenger/msgdbview;1?type=search"].createInstance(Components.interfaces.nsIMsgDBView);
  557.     var count = new Object;
  558.     var cmdupdator = new nsMsgSearchCommandUpdater();
  559.  
  560.     gSearchView.init(messenger, msgWindow, cmdupdator);
  561.     gSearchView.open(null, nsMsgViewSortType.byId, nsMsgViewSortOrder.ascending, nsMsgViewFlagsType.kNone, count);
  562.  
  563.     // the thread pane needs to use the search datasource (to get the
  564.     // actual list of messages) and the message datasource (to get any
  565.     // attributes about each message)
  566.     gSearchSession = Components.classes[searchSessionContractID].createInstance(Components.interfaces.nsIMsgSearchSession);
  567.  
  568.     gMailSession = Components.classes[mailSessionContractID].getService(Components.interfaces.nsIMsgMailSession);
  569.     var nsIFolderListener = Components.interfaces.nsIFolderListener;
  570.     var notifyFlags = nsIFolderListener.event;
  571.     gMailSession.AddFolderListener(gFolderListener, notifyFlags);
  572.  
  573.     // the datasource is a listener on the search results
  574.     gViewSearchListener = gSearchView.QueryInterface(Components.interfaces.nsIMsgSearchNotify);
  575.     gSearchSession.registerListener(gViewSearchListener);
  576. }
  577.  
  578.  
  579. function setupSearchListener()
  580. {
  581.     // Setup the javascript object as a listener on the search results
  582.     gSearchSession.registerListener(gSearchNotificationListener);
  583. }
  584.  
  585. // stuff after this is implemented to make the thread pane work
  586. function GetFolderDatasource()
  587. {
  588.     if (!gFolderDatasource)
  589.         gFolderDatasource = Components.classes[folderDSContractID].getService(Components.interfaces.nsIRDFDataSource);
  590.     return gFolderDatasource;
  591. }
  592.  
  593. // used to determine if we should try to load a message
  594. function IsThreadAndMessagePaneSplitterCollapsed()
  595. {
  596.     return true;
  597. }
  598.  
  599. // used to toggle functionality for Search/Stop button.
  600. function onSearchButton(event)
  601. {
  602.     if (event.target.label == gSearchBundle.getString("labelForSearchButton"))
  603.         onSearch();
  604.     else
  605.         onSearchStop();
  606. }
  607.  
  608. // threadPane.js will be needing this, too
  609. function GetNumSelectedMessages()
  610. {
  611.    try {
  612.        return gSearchView.numSelected;
  613.    }
  614.    catch (ex) {
  615.        return 0;
  616.    }
  617. }
  618.  
  619. function GetDBView()
  620. {
  621.     return gSearchView;
  622. }
  623.  
  624. function MsgDeleteSelectedMessages(aCommandType)
  625. {
  626.     // we don't delete news messages, we just return in that case
  627.     if (isNewsURI(gSearchView.getURIForViewIndex(0))) 
  628.         return;
  629.  
  630.     // if mail messages delete
  631.     SetNextMessageAfterDelete();
  632.     gSearchView.doCommand(aCommandType);
  633. }
  634.  
  635. function SetNextMessageAfterDelete()
  636. {
  637.   gNextMessageViewIndexAfterDelete = gSearchView.msgToSelectAfterDelete;
  638. }
  639.  
  640. function HandleDeleteOrMoveMessageFailed(folder)
  641. {
  642.   gNextMessageViewIndexAfterDelete = -2;
  643. }
  644.  
  645. function HandleDeleteOrMoveMessageCompleted(folder)
  646. {
  647.   var treeView = gSearchView.QueryInterface(Components.interfaces.nsITreeView);
  648.   var treeSelection = treeView.selection;
  649.   var viewSize = treeView.rowCount;
  650.  
  651.   if (gNextMessageViewIndexAfterDelete == -2) {
  652.     // a move or delete can cause our selection can change underneath us.
  653.     // this can happen when the user
  654.     // deletes message from the stand alone msg window
  655.     // or the three pane
  656.     if (!treeSelection) {
  657.       // this can happen if you open the search window
  658.       // and before you do any searches
  659.       // and you do delete from another mail window
  660.       return;
  661.     }
  662.     else if (treeSelection.count == 0) {
  663.       // this can happen if you double clicked a message
  664.       // in the thread pane, and deleted it from the stand alone msg window
  665.       // see bug #185147
  666.       treeSelection.clearSelection();
  667.  
  668.       UpdateMailSearch("delete from another view, 0 rows now selected");
  669.     }
  670.     else if (treeSelection.count == 1) {
  671.       // this can happen if you had two messages selected
  672.       // in the search results pane, and you deleted one of them from another view
  673.       // (like the view in the stand alone msg window or the three pane)
  674.       // since one item is selected, we should load it.
  675.       var startIndex = {};
  676.       var endIndex = {};
  677.       treeSelection.getRangeAt(0, startIndex, endIndex);
  678.         
  679.       // select the selected item, so we'll load it
  680.       treeSelection.select(startIndex.value); 
  681.       treeView.selectionChanged();
  682.  
  683.       EnsureRowInThreadTreeIsVisible(startIndex.value); 
  684.       UpdateMailSearch("delete from another view, 1 row now selected");
  685.     }
  686.     else {
  687.       // this can happen if you have more than 2 messages selected
  688.       // in the search results pane, and you deleted one of them from another view
  689.       // (like the view in the stand alone msg window or the three pane)
  690.       // since multiple messages are still selected, do nothing.
  691.     }
  692.   }
  693.   else {
  694.     if (gNextMessageViewIndexAfterDelete != nsMsgViewIndex_None && gNextMessageViewIndexAfterDelete >= viewSize) 
  695.     {
  696.       if (viewSize > 0)
  697.         gNextMessageViewIndexAfterDelete = viewSize - 1;
  698.       else
  699.       {           
  700.         gNextMessageViewIndexAfterDelete = nsMsgViewIndex_None;
  701.  
  702.         // there is nothing to select since viewSize is 0
  703.         treeSelection.clearSelection();
  704.  
  705.         UpdateMailSearch("delete from current view, 0 rows left");
  706.       }
  707.     }
  708.  
  709.     // if we are about to set the selection with a new element then DON'T clear
  710.     // the selection then add the next message to select. This just generates
  711.     // an extra round of command updating notifications that we are trying to
  712.     // optimize away.
  713.     if (gNextMessageViewIndexAfterDelete != nsMsgViewIndex_None) 
  714.     {
  715.       treeSelection.select(gNextMessageViewIndexAfterDelete);
  716.       // since gNextMessageViewIndexAfterDelete probably has the same value
  717.       // as the last index we had selected, the tree isn't generating a new
  718.       // selectionChanged notification for the tree view. So we aren't loading the 
  719.       // next message. to fix this, force the selection changed update.
  720.       if (treeView)
  721.         treeView.selectionChanged();
  722.  
  723.       EnsureRowInThreadTreeIsVisible(gNextMessageViewIndexAfterDelete); 
  724.  
  725.       // XXX TODO
  726.       // I think there is a bug in the suppression code above.
  727.       // what if I have two rows selected, and I hit delete, 
  728.       // and so we load the next row.
  729.       // what if I have commands that only enable where 
  730.       // exactly one row is selected?
  731.       UpdateMailSearch("delete from current view, at least one row selected");
  732.     }
  733.   }
  734.  
  735.   // default value after delete/move/copy is over
  736.   gNextMessageViewIndexAfterDelete = -2;
  737.  
  738.   // something might have been deleted, so update the status text
  739.   SetAdvancedSearchStatusText(viewSize);
  740. }
  741.  
  742. function MoveMessageInSearch(destFolder)
  743. {
  744.     try {
  745.         // get the msg folder we're moving messages into
  746.         // if the id (uri) is not set, use file-uri which is set for
  747.         // "File Here"
  748.         var destUri = destFolder.getAttribute('id');
  749.         if (destUri.length == 0) { 
  750.           destUri = destFolder.getAttribute('file-uri')
  751.         }
  752.         
  753.         var destResource = RDF.GetResource(destUri);
  754.  
  755.         var destMsgFolder = destResource.QueryInterface(Components.interfaces.nsIMsgFolder);
  756.  
  757.         // we don't move news messages, we copy them
  758.         if (isNewsURI(gSearchView.getURIForViewIndex(0))) {
  759.           gSearchView.doCommandWithFolder(nsMsgViewCommandType.copyMessages, destMsgFolder);
  760.         }
  761.         else {
  762.             SetNextMessageAfterDelete();
  763.             gSearchView.doCommandWithFolder(nsMsgViewCommandType.moveMessages, destMsgFolder);
  764.         } 
  765.     }
  766.     catch (ex) {
  767.         dump("MsgMoveMessage failed: " + ex + "\n");
  768.     }   
  769. }
  770.  
  771. function GoToFolder()
  772. {
  773.   MsgOpenNewWindowForMsgHdr(gSearchView.hdrForFirstSelectedMessage);
  774. }
  775.  
  776. function BeginDragThreadPane(event)
  777. {
  778.     // no search pane dnd yet
  779.     return false;
  780. }
  781.  
  782. function saveAsVirtualFolder()
  783. {
  784.   var preselectedURI = gCurrentFolder.URI;
  785.   searchFolderURIs = preselectedURI;
  786.  
  787.   var searchSubfolders = document.getElementById("checkSearchSubFolders").checked;
  788.   if (gCurrentFolder && (searchSubfolders || gCurrentFolder.isServer || gCurrentFolder.noSelect))
  789.   {
  790.     var subFolderURIs = AddSubFoldersToURI(gCurrentFolder);
  791.     if (subFolderURIs.length > 0)
  792.       searchFolderURIs += '|' + subFolderURIs;
  793.   }
  794.  
  795.   var dialog = window.openDialog("chrome://messenger/content/virtualFolderProperties.xul", "",
  796.                                  "chrome,titlebar,modal,centerscreen",
  797.                                  {preselectedURI:preselectedURI,
  798.                                   searchTerms:gSearchSession.searchTerms,
  799.                                   searchFolderURIs: searchFolderURIs});
  800. }
  801.  
  802.